home *** CD-ROM | disk | FTP | other *** search
/ Sky at Night 2007 March / SAN CD 3-2007 CD-ROM 22.iso / pc / Software / VisualSpec / _SETUP.1 / std.gnu < prev    next >
Encoding:
Text File  |  2005-03-25  |  1.1 KB  |  39 lines

  1. #============================================================
  2. # Script de trace GnuPlot des profils spectro de Visual Spec
  3. #============================================================
  4. # Paramätre 1 : nom du fichier
  5. # Paramätre 2 : intitulÇ du titre
  6. # Paramätre 3 : valeur min en Y
  7. # Paramätre 4 : valeur max en Y
  8. # Paramätre 5 : valeur min en X
  9. # Paramätre 6 : valeur max en X
  10. # Paramätre 7 : valeur ticks en X
  11. # ParamËtre 8: nom du fichier png
  12. #
  13. # Exemples :
  14. #    call "std.gnu" "140699.dat" "88Her" 6500 7000 .2 1.8
  15. #    call "std.gnu" "140699.dat" "88her" * * * *    (echelle automatique)
  16. #============================================================
  17.  
  18. set terminal windows "Arial" 9
  19. set xlabel ""
  20. set ylabel ""
  21. set yrange [$2:$3]
  22. set xtics $6
  23. set xrange [$4:$5]    # zone libre
  24. set tmargin 2
  25. set grid
  26. set title '$1' ,-0.5
  27. plot "$0" notitle with lines
  28. #et maintenant le fichier
  29. set terminal png small size 640,480
  30. set output '$7'
  31. set xlabel ""
  32. set ylabel ""
  33. set yrange [$2:$3]
  34. set xtics $6
  35. set xrange [$4:$5]    # zone libre
  36. set tmargin 2
  37. set grid
  38. set title '$1' ,-0.5
  39. plot "$0" notitle with lines